home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue51
/
Construc
/
Server51.dpr
< prev
next >
Wrap
Text File
|
1999-09-27
|
316b
|
18 lines
program Server51;
uses
Forms,
MainUnit in 'MainUnit.pas' {Form1},
Server51_TLB in 'Server51_TLB.pas',
DataMod in 'DataMod.pas' {TDM: TRemoteDataModule} {TDM: CoClass};
{$R *.TLB}
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.